blob: 04fba9747c7f3d0f1d676120542c7149551b408b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
import { Image, Chip } from "@nextui-org/react";
import { MovieInfoData } from "../components/requestsHandler";
import DescriptionTabs from "../components/descriptionTabs";
import MovieVideoPlayer from "../components/videoPlayer";
import Questions from "../components/faqs";
const MovieInfoPage = async ({ params }) => {
const id = params.id;
const data = await MovieInfoData(id);
return (
<section
style={{
backgroundImage: `radial-gradient(gray 1px, transparent 1px)`,
backgroundSize: "40px 40px",
}}
className="h-screen bg-white dark:bg-black"
>
<section className="absolute inset-0 bg-gradient-to-b from-transparent to-white-400 dark:to-black">
<section className="pt-12 m-auto w-full lg:w-9/12">
<MovieVideoPlayer id={data.id} />
<div className="flex items-center">
<Image
isBlurred
shadow="lg"
src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=https://image.tmdb.org/t/p/original${data.poster_path}`}
width={180}
height={300}
alt="Anime Title Poster"
className="m-2"
></Image>
<div className="mx-5">
<h4 className={`text-2xl`}>
<strong>{data.title}</strong>
</h4>
<div className="mt-1">
{data.genres &&
data.genres.map((item, index) => (
<Chip
key={index}
color="warning"
variant="faded"
className="mr-1 mb-1"
>
<p className="text-xs">
{item.name}
</p>
</Chip>
))}
</div>
</div>
</div>
<DescriptionTabs data={data} />
<Questions />
</section>
</section>
</section>
);
};
export default MovieInfoPage;
|